home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / plusmail.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  58 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10181);
  10.  script_bugtraq_id(2653);
  11.  script_version ("$Revision: 1.15 $");
  12.  script_cve_id("CAN-2000-0074");
  13.  name["english"] = "PlusMail vulnerability";
  14.  name["francais"] = "PlusMail vulnerability";
  15.  script_name(english:name["english"], francais:name["francais"]);
  16.  
  17.  desc["english"] = "The 'plusmail' CGI is installed. Some
  18. versions of this CGI have a well known security flaw that 
  19. lets an attacker read arbitrary
  20. file with the privileges of the http daemon 
  21. (usually root or nobody).
  22.  
  23. Solution : remove it from /cgi-bin. No patch yet
  24.  
  25. Risk factor : High";
  26.  
  27.  
  28.  
  29.  script_description(english:desc["english"]);
  30.  
  31.  summary["english"] = "Checks for the presence of /cgi-bin/plusmail";
  32.  summary["francais"] = "VΘrifie la prΘsence de /cgi-bin/plusmail";
  33.  
  34.  script_summary(english:summary["english"], francais:summary["francais"]);
  35.  
  36.  script_category(ACT_GATHER_INFO);
  37.  
  38.  
  39.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  40.         francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
  41.  family["english"] = "CGI abuses";
  42.  family["francais"] = "Abus de CGI";
  43.  script_family(english:family["english"], francais:family["francais"]);
  44.  script_dependencie("find_service.nes", "no404.nasl");
  45.  script_require_ports("Services/www", 80);
  46.  exit(0);
  47. }
  48.  
  49. #
  50. # The script code starts here
  51. #
  52. include("http_func.inc");
  53. include("http_keepalive.inc");
  54. port = get_http_port(default:80);
  55.  
  56. res = is_cgi_installed_ka(item:"plusmail", port:port);
  57. if(res)security_hole(port);
  58.